f11f0da8aac9d9b1dcf94e42f9f4faeb7e0cec72,src/main/java/org/toradocu/extractor/JavadocExtractor.java,JavadocExtractor,extract,#ClassDoc#,60
Before Change
for (MethodDoc implementedMethod : implementedMethods.build()) {
Collections.addAll(throwsTags, implementedMethod.tags("@throws"));
Collections.addAll(throwsTags, implementedMethod.tags("@exception"));
Collections.addAll(paramTags, implementedMethod.tags("@param"));
}
}
After Change
Collections.addAll(throwsTags, implementedMethod.tags("@throws"));
Collections.addAll(throwsTags, implementedMethod.tags("@exception"));
//param
paramTagsMap.putAll(getParamTags(implementedMethod.tags("@param")));
}
}